Stored Procedures [dbo].[BAEOrderProductCategoryLookupLoad]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@OrderProductIDint4
@OrderCategoryIDint4
SQL Script
create procedure [dbo].[BAEOrderProductCategoryLookupLoad] @OrderProductID as
int,
    @OrderCategoryID AS int
AS
    SELECT *
    FROM OrderProductCategoryLookup
    WHERE OrderProductID = @OrderProductID AND
    OrderCategoryID = @OrderCategoryID;

GO
Uses